home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 May / PCpro_2007_05.ISO / files / vollversionen / visualdataflex / VDF12.0.StudioDownload.exe / %MAINDIR% / Examples / Example Library / AppHtml / Debug.asp
Encoding:
Text File  |  2007-03-10  |  315 b   |  20 lines

  1. <% response.expires = 0 %>
  2. <html>
  3. <head>
  4. <title>Debug Toggle</title>
  5. </head>
  6. <body>
  7. The Debug mode is currently
  8. <%
  9.  Bug = session ("debug")
  10.  If Bug =0 then
  11.     session ("debug") = 1
  12.     response.write (" On")
  13.  else
  14.     session ("debug") = 0
  15.     response.write (" Off")
  16.  end if
  17. %>
  18. </body>
  19. </html>
  20.